VSCode - VSCodium

Files

  • The folder for VSCodium is called VSCodium .

  • The folder for VScode is called Code .

  • AppData/Roaming/VSCodium/User/keybindings.json

  • AppData/Roaming/VSCodium/User/settings.json

  • AppData/Roaming/VSCodium/User/tasks.json

  • AppData/Roaming/VSCodium/User/snippets/

  • AppData/Roaming/VSCodium/User/workspaceStorage

    • List of trusted/untrusted files/folders.

Installing Extensions

OpenVSX
VSCode exclusive
  • Search the extension in the Microsoft Marketplace .

  • Look for the github repo and download the .vsix  file manually.

  • .

codium --install-extension /path/to/file.vsix

Formatting

Prettier
  • Go Templates :

    • Needs the npm  plugin for Go.

    npm init
    npm install --save-dev prettier prettier-plugin-go-template
    
    • Put the file .prettierrc  in the top of the file system. The file affects other things in cascade.

    {
        "tabWidth": 4,
        "useTabs": false,
        "plugins": ["prettier-plugin-go-template"],
        "overrides": [
            {
                "files": ["*.html"],
                "options": {
                    "parser": "go-template",
                    "goTemplateBracketSpacing": true,
                    "bracketSameLine": true
                }
            }
        ]
    }
    

Debugging

Workspaces

Plugins

Plugin Background
  • =>  Open the image from the PC in the browser, copy the URL.